home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Programmer's Power Pack
/
Delphi Volume 1.iso
/
e_to_l
/
earth_ss
/
earth.dpr
next >
Wrap
Text File
|
1996-09-15
|
589b
|
29 lines
program Earth;
{>
The following is required to give a name to your screen saver. This
name will appear in the Configuration Panel Screen Savers pick list.
All the rest is generated by Delphi.
}
{$D SCRNSAVE Earth}
uses
Forms,
Earth01 in 'EARTH01.PAS' {f_ScreenSaver};
{$R *.RES}
begin
{> Make sure the program is not executed twice in screen saver mode
}
if (HPrevInst = 0) or (ParamStr (1) <> '/s') then
begin
Application.Title := 'Earth';
Application.CreateForm(Tf_ScreenSaver, f_ScreenSaver);
Application.Run;
end ;
end.